home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Games Machine 131
/
XENIATGM131.iso
/
Shareware
/
openOffice.org 641
/
Windows
/
f_0047
/
sbasic.jar
/
text
/
sbasic
/
common
/
03120305.xml
< prev
next >
Wrap
Extensible Markup Language
|
2001-09-07
|
2KB
|
37 lines
<?xml version="1.0" encoding="utf-8"?>
<html><head><title>LTrim Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03120305"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
p.P1{
}
span.T1{
font-weight:bold;}
</style></head><body>
<help:to-be-embedded Eid="ltrim" xmlns:help="http://openoffice.org/2000/help"><a name="ltrim"/>
<p class="Head1"><help:link Id="66632">LTrim Function [Runtime]</help:link></p>
<p class="Paragraph">Removes all leading spaces of a string expression.</p>
</help:to-be-embedded>
<p class="Paragraph"><span class="T1">Syntax</span>:</p>
<p class="Paragraph">LTrim (Text As String) <help:key-word value="LTrim" tag="kw66632_1" xmlns:help="http://openoffice.org/2000/help"/></p>
<p class="Paragraph"><span class="T1">Return value</span>:</p>
<p class="Paragraph">String</p>
<p class="Paragraph"><span class="T1">Parameter</span>:</p>
<p class="Paragraph">Text: Any string expression.</p>
<p class="Paragraph">Use this function to remove spaces in front of a string expression.</p>
<p class="Paragraph"><span class="T1">Example:</span></p>
<p class="PropText">Sub ExampleSpaces</p>
<p class="PropText">Dim sText2 As String,sText As String,sOut As String</p>
<p class="PropText">sText2 = " <*Las Vegas*> "</p>
<p class="PropText"/>
<p class="PropText">sOut = "'"+sText2 +"'"+ Chr(13)</p>
<p class="PropText">sText = Ltrim(sText2) REM sText = <*Las Vegas*> "</p>
<p class="PropText">sOut = sOut + "'"+sText +"'" + Chr(13)</p>
<p class="PropText">sText = Rtrim(sText2) REM sText = " <*Las Vegas*> "</p>
<p class="PropText">sOut = sOut +"'"+ sText +"'" + Chr(13)</p>
<p class="PropText">sText = Trim(sText2) REM sText = " <*Las Vegas*> "</p>
<p class="PropText">sOut = sOut +"'"+ sText +"'"</p>
<p class="PropText">MsgBox sOut</p>
<p class="PropText">end sub</p>
<p class="PropText"/>
</body></html>